home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / local_name.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  127 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class LOCAL_NAME
  17.    --
  18.    -- Handling of local variables.
  19.    --
  20.  
  21. inherit LOCAL_ARGUMENT;
  22.  
  23. feature
  24.  
  25.    is_writable: BOOLEAN is true;
  26.  
  27.    isa_dca_inline_argument: INTEGER is 0;
  28.  
  29.    frozen dca_inline_argument(formal_arg_type: TYPE) is
  30.       do
  31.       end;
  32.  
  33.    frozen mapping_c_target(target_type: TYPE) is
  34.       local
  35.          flag: BOOLEAN;
  36.          rt: like result_type;
  37.       do
  38.          flag := cpp.call_invariant_start(target_type);
  39.          rt := result_type.run_type;
  40.          if rt.is_reference then
  41.             if target_type.is_reference then
  42.                -- Reference into Reference :
  43.                cpp.put_character('(');
  44.                cpp.put_character('(');
  45.                cpp.put_character('T');
  46.                cpp.put_integer(target_type.id);
  47.                cpp.put_character('*');
  48.                cpp.put_character(')');
  49.                compile_to_c;
  50.                cpp.put_character(')');
  51.             else
  52.                -- Reference into Expanded :
  53.                compile_to_c;
  54.             end;
  55.          elseif target_type.is_reference then
  56.             -- Expanded into Reference :
  57.             compile_to_c;
  58.          else
  59.             -- Expanded into Expanded :
  60.             if rt.need_c_struct then
  61.                cpp.put_character('&');
  62.             end;
  63.             compile_to_c;
  64.          end;
  65.          if flag then
  66.             cpp.call_invariant_end;
  67.          end;
  68.       end;
  69.  
  70.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  71.       do
  72.          compile_to_c;
  73.       end;
  74.  
  75.    frozen compile_to_c is
  76.       do
  77.          cpp.print_local(to_string);
  78.       end;
  79.  
  80.    frozen compile_to_jvm is
  81.       local
  82.          jvm_offset: INTEGER;
  83.       do
  84.          jvm_offset := jvm.local_offset_of(Current);
  85.          result_type.run_type.jvm_push_local(jvm_offset);
  86.       end;
  87.  
  88.    frozen jvm_branch_if_false: INTEGER is
  89.       do
  90.          compile_to_jvm;
  91.          Result := code_attribute.opcode_ifeq;
  92.       end;
  93.  
  94.    frozen jvm_branch_if_true: INTEGER is
  95.       do
  96.          compile_to_jvm;
  97.          Result := code_attribute.opcode_ifne;
  98.       end;
  99.  
  100.    frozen compile_to_jvm_into(dest: TYPE): INTEGER is
  101.       do
  102.          Result := standard_compile_to_jvm_into(dest);
  103.       end;
  104.  
  105.    frozen jvm_assign is
  106.       local
  107.          jvm_offset: INTEGER;
  108.       do
  109.          jvm_offset := jvm.local_offset_of(Current);
  110.          result_type.run_type.jvm_write_local(jvm_offset);
  111.       end;
  112.  
  113.    frozen pretty_print is
  114.       do
  115.          fmt.put_string(to_string);
  116.       end;
  117.  
  118. feature {NONE}
  119.  
  120.    tmp_string: STRING is
  121.       once
  122.          !!Result.make(256);
  123.       end;
  124.  
  125. end -- LOCAL_NAME
  126.  
  127.